date_parse_from_format
获取有关根据指定格式格式化的给定日期的信息
date_parse_from_format()
函数根据指定的格式返回包含指定日期信息的关联数组。
根据指定的格式返回一个包含指定日期信息的关联数组:
<?php print_r(date_parse_from_format("mmddyyyy","05122013")); ?>
亲自试一试
date_parse_from_format(format,date);
参数 | 描述 |
---|---|
format | 必需。规定格式(date_create_from_format() 接受的格式)。 |
date | 必需。指定日期,字符串值。 |